home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 3-004 ms visual basic pro 30 / disk8 / form2a.fr_ / form2a.bin
Text File  |  1993-04-27  |  2KB  |  59 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    Caption         =   "Printer Options"
  4.    ClientHeight    =   1770
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1485
  7.    ClientWidth     =   6765
  8.    Height          =   2175
  9.    Left            =   1035
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   1770
  12.    ScaleWidth      =   6765
  13.    Top             =   1140
  14.    Width           =   6885
  15.    Begin CommandButton Command2 
  16.       Caption         =   "Reset Number of Copies"
  17.       Height          =   255
  18.       Left            =   3600
  19.       TabIndex        =   3
  20.       Top             =   1080
  21.       Width           =   2655
  22.    End
  23.    Begin CommandButton Command1 
  24.       Caption         =   "Accept Number of Copies"
  25.       Height          =   255
  26.       Left            =   360
  27.       TabIndex        =   2
  28.       Top             =   1080
  29.       Width           =   2415
  30.    End
  31.    Begin TextBox Num_Copies 
  32.       Height          =   375
  33.       Left            =   5400
  34.       TabIndex        =   1
  35.       Text            =   "1"
  36.       Top             =   480
  37.       Width           =   495
  38.    End
  39.    Begin Label Label2 
  40.       Caption         =   "Please enter the number of copies you wish to print :"
  41.       Height          =   255
  42.       Left            =   360
  43.       TabIndex        =   0
  44.       Top             =   480
  45.       Width           =   4815
  46.    End
  47. End
  48. Sub Command1_Click ()
  49.     Number_Of_Copies = Num_Copies
  50.     Form2.Hide
  51.    
  52. End Sub
  53.  
  54. Sub Command2_Click ()
  55.     Num_Copies.SetFocus
  56.     Num_Copies.Text = "1"
  57. End Sub
  58.  
  59.